home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmj / Source / Tiles / CharacterEightTile.h < prev    next >
C/C++ Source or Header  |  1991-03-03  |  249b  |  23 lines

  1.  
  2. /*
  3.  * Character Game Tiles.
  4.  *
  5.  $Author$
  6.  $Header$
  7.  *
  8.  $Log$
  9.  */
  10.  
  11. #import    <GameTile.h>
  12.  
  13. class CharacterEightTile : public GameTile {
  14.  
  15. public:
  16.     CharacterEightTile( void ) {
  17.     
  18.         my_tile_type = CHARACTER_8;
  19.         loadImageFromFile( "char8.tiff" );
  20.     }
  21. };
  22.  
  23.